home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 April / Software of the Month Club 1996 April.iso / pc / os2 / htmlchk / mac / hctinit.mac < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.4 KB  |  26 lines

  1. /*---------------------------------------------------------------------------*/
  2. /*                                                                           */
  3. /*  hctInit - This REXX Macro is called when the report is first called      */
  4. /*           This is where you can set up your  Header and such              */
  5. /*                                                                           */
  6. /*  Valid Variables are:                                                     */
  7. /*      hcReportName    hcReportDescription     hcServerURL                  */
  8. /*      hcServerRoot    hcDocumentRoot          hcTopHTML                    */
  9. /*                                                                           */
  10. /*                                                                           */
  11. /*---------------------------------------------------------------------------*/
  12.  
  13.   Call RxhcLineOut 'Report -' hcReportDescription
  14.   Call RxhcLineOut COPIES(' ', 60) || Date() || ' ' || Time()
  15.   Call RxhcLineOut COPIES('-', 78)
  16.   Call RxhcLineOut 'hcReportName=' hcReportName
  17.   Call RxhcLineOut 'hcReportDescription=' hcReportDescription
  18.   Call RxhcLineOut 'hcServerURL=' hcServerURL
  19.   Call RxhcLineOut 'hcServerRoot=' hcServerRoot
  20.   Call RxhcLineOut 'hcDocumentRoot=' hcDocumentRoot
  21.   Call RxhcLineOut 'hcTopHTML=' hcTopHTML
  22.  
  23.   Call RxhcLineOut COPIES('-', 78)
  24.  
  25. RETURN
  26.